home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 4
/
Aminet 4 - November 1994.iso
/
aminet
/
dev
/
gcc
/
libnix.lha
/
gnu
/
lib
/
libnix
/
sources.lha
/
nix
/
stdio
/
vsscanf.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-07-12
|
310 b
|
16 lines
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <strsup.h>
int vsscanf(const char *s,const char *format,va_list args)
{
FILE buffer;
buffer.p=(char *)s;
buffer.flags=0x204;
buffer.incount=strlen(s);
buffer.outcount=0;
buffer.tmpp=NULL;
return vfscanf(&buffer,format,args);
}